home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / docs / misc / ConcNews.lha / news / amiga.system / comp.sys.amiga.programmer_8681_000015.msg < prev   
Encoding:
Internet Message Format  |  1994-11-27  |  2.0 KB

  1. Path: dd.chalmers.se!dd.chalmers.se!not-for-mail
  2. From: lundgren@dd.chalmers.se (Lars Lundgren)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: Icons and Assigns
  5. Date: 7 Apr 1994 18:36:12 +0200
  6. Organization: Chalmers University of Technology, Sweden
  7. Lines: 45
  8. Message-ID: <2o1cps$r9c@sauron.dd.chalmers.se>
  9. References: <1994Apr6.120442.13878@imada.ou.dk>
  10. NNTP-Posting-Host: sauron.dd.chalmers.se
  11.  
  12. In article <1994Apr6.120442.13878@imada.ou.dk>,
  13. Bjorn Reese <breese@imada.ou.dk> wrote:
  14. >I'm looking for, or in case it doesn't exist, urging someone to write,
  15. >two small utilities which I have been missing very much lately.
  16. >
  17. ...
  18.  
  19. >2) Saving to assigns
  20. >
  21. >Many applications insist on storing their pref/config files in S:.
  22. >I don't want them there (in fact I have locked my workbench partition
  23. >- virus paranoia,) so I've made and "assign S: <somewhere> add"
  24. >where they can be. Once the files have been put in the additional S:
  25. >everything works fine until I want to save them again; then they end
  26. >up in my initial S:. What I need is an utility to redirect them to
  27. >the proper place.
  28.  
  29. Don't do an Assign ADD, do an Assign. Like I do:
  30.  
  31. Assign S: Data:Sys/S Work:Sys/S SYS:S
  32.  
  33. Writes will go to Data:Sys/S... This trick actually came from
  34. someone on the net, whose name I've forgotten.
  35.  
  36. I've tried to keep stuff out of SYS: myself by using assigns,
  37. but partly failed; had to put datatypes and dosdrivers in SYS:
  38. I can't believe there are people who put all their programs in Sys:C ;
  39. C: is for commodore-supplied cli programs.
  40.  
  41. >
  42. >BTW, this reminds me that I also want the various file-requesters (ASL,
  43. >Reqtools...) to display the contents of all directories linked to an
  44. >assign.
  45.  
  46. There's a thing called "Path-handler", which came with WShell 2.0.
  47. You can for example do
  48. assign q: PATH:SYS:C,RAM:
  49. dir q:
  50.  
  51. and a listing will come up of all files in C: _and_ RAM:, unless there
  52. are duplicate names. I don't know how well it works, and I know
  53. it wasn't exactly what you wanted...
  54.  
  55. Jorgen
  56.